home *** CD-ROM | disk | FTP | other *** search
/ Animation / Animation Vol.1 (Profi ROM)(1994).iso / samples.zip / 3DS.INC next >
Text File  |  1993-09-30  |  914b  |  58 lines

  1. // An example of how to set up a 3ds2pov texture library for use
  2. // with POV-Ray
  3.  
  4. // The #version commands are for compatibility with POV-Ray 2.0
  5. // Remove them if you're using POV-Ray 1.0.
  6. #version 1.0
  7.  
  8. #declare YELLOW_PLASTIC = texture {
  9.     ambient 0.1
  10.     diffuse 0.8
  11.     phong 1.0
  12.     phong_size 70.0
  13.     color Yellow
  14. }
  15.  
  16. #declare WHITE_PLASTIC = texture {
  17.     Shiny
  18.     color White
  19. }
  20.  
  21. #declare RED_PLASTIC = texture {
  22.     Shiny
  23.     color Red
  24. }
  25.  
  26. #declare BLACK_PLASTIC = texture {
  27.     Shiny
  28.     color Black
  29. }
  30.  
  31. #declare PURPLE_VELVET = texture {
  32.     0.1
  33.     ambient 0.1
  34.     diffuse 1.2
  35.     phong 0.3
  36.     phong_size 30.0
  37.     color Violet
  38. }
  39.  
  40. #declare BROWN_MATTE = texture {
  41.     Dull
  42.     color Brown
  43. }
  44.  
  45. #declare GOLD = texture {
  46.     Gold_Metal
  47. }
  48.  
  49. #declare COPPER = texture {
  50.     Copper_Metal
  51. }
  52.  
  53. #declare SILVER = texture {
  54.     Silver_Metal
  55. }
  56.  
  57. #version 2.0
  58.